#!/bin/sh
#
# Print the size of a file, in bytes.
#
SIZE=`ls -ld "$1" | awk '{print $5}'`
echo -n $SIZE

